home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 4 / MacFormat n. 4 (Spain) / MacFormat 4.bin / La ciudad del ShareWare / Desarrollo / OutOfPhase1.1 Source / OutOfPhase Folder / ClipWarnDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-22  |  731 b   |  25 lines

  1. /* ClipWarnDialog.h */
  2.  
  3. #ifndef Included_ClipWarnDialog_h
  4. #define Included_ClipWarnDialog_h
  5.  
  6. /* ClipWarnDialog module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* Numbers */
  12. /* DataMunging */
  13. /* Alert */
  14. /* Memory */
  15.  
  16. /* present a dialog box detailing how much clipping occurred.  the DontTellHowToFix */
  17. /* parameter determines whether the inverse volume correction will be displayed. */
  18. void                                    ClipWarnDialog(long ClippedSampleCount, long TotalSampleCount,
  19.                                                 double MaxExtent, double Correction, MyBoolean DontTellHowToFix);
  20.  
  21. /* present a dialog box detailing how much clamping occurred and how to fix it. */
  22. void                                    ClampWarnDialog(float Clamping, double Correction);
  23.  
  24. #endif
  25.